home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 November
/
Macworld (1999-11).dmg
/
Updaters
/
WhiteCap 3.0.4
/
WhiteCap Source.sit
/
WhiteCap Source
/
Common
/
General Tools
/
Headers
/
Hashable.h
< prev
next >
Wrap
Text File
|
1999-07-13
|
179b
|
14 lines
#ifndef _HASHABLE_H
#define _HASHABLE_H
class Hashable {
public:
virtual long Hash() const = 0;
virtual bool Equals( const Hashable* inComp ) const = 0;
};
#endif